Dynomotion

Group: DynoMotion Message: 478 From: fermanz Date: 6/25/2010
Subject: Spindle Oil Pump - enable?
The Hankook lathe spindle has a separate oil pump which has to be started when the spindle command is called.
Is there a piece of code that I can include in the SpindleMach3.c file to enable the relay which starts the pump?
The relays are 24V DC.
Ross
Group: DynoMotion Message: 479 From: Tom Kerekes Date: 6/25/2010
Subject: Re: Spindle Oil Pump - enable?
Hi Ross,
 
Yes.  Just add something like SetBit(152);  or ClearBit(152);  to drive a FET Relay Driver.
 
into the EX_SPINON and EX_SPINOFF cases of your Mach Spindle program.
 
TK

Group: DynoMotion Message: 480 From: Ross Ferguson Date: 6/26/2010
Subject: Re: Spindle Oil Pump - enable?
Thanks Tom,
We will need some diodes to do that, and the spindle enable.
And I will have to delve into the C programming again :(
We have the machine up and running and I did a first cut with it today.
Although we had to enable that pump with jumpers and I ran the spindle via a DAC command, I was able to do a bit of machining using the handwheels and the Mach3 DROs.
We should be able to start on the threading soon :)

Ross

On 26/06/2010 4:13 PM, Tom Kerekes wrote:
 
Hi Ross,
 
Yes.  Just add something like SetBit(152);  or ClearBit(152) ;  to drive a FET Relay Driver.
 
into the EX_SPINON and EX_SPINOFF cases of your Mach Spindle program.
 
TK